home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000241_news@columbia.edu _Fri Jan 5 10:53:58 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA17181 for <kermit.misc@watsun>; Fri, 5 Jan 1996 10:53:57 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA21887 for kermit.misc@watsun; Fri, 5 Jan 1996 10:53:50 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Counting bytes sent/received
  8. Date: 5 Jan 1996 15:53:45 GMT
  9. Organization: Columbia University
  10. Lines: 28
  11. Message-ID: <4cjhi9$lbt@apakabar.cc.columbia.edu>
  12. References: <4cgneu$kr9@sinsen.sn.no>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4cgneu$kr9@sinsen.sn.no>, Per H Lange <perlange@sn.no> wrote:
  16. : Does Kermit keep track of how many bytes have been sent/received
  17. : on the current connection ?
  18. :  
  19. : The reason why I am asking this is that the we will be connecting to
  20. : our customer via X.25.  Kermit is used to telnet to a Cisco box which
  21. : automatically opens a X.25 connection to the customers machine.  
  22. : We then charge the customers based on the connection cost (+ the
  23. : work involved).  The problem is that X.25 connection cost is not only
  24. : based on how long the connection was open but also on how much data
  25. : was sent/received.  If it would be possible to get that information
  26. : from kermit, then it would make it easy to store that information in
  27. : a log file.  
  28. It always helps to provide better answers if you state which Kermit program
  29. you are talking about, on which type of computer and operating system.
  30.  
  31. Back in the old days, when people still used to look at source code, make
  32. modifications, and recompile, it was a great benefit that Kermit source
  33. code was available to everybody.  While this world has largely disappeared,
  34. there are still some vestiges of it clinging to their obscure little niches.
  35. For example, odd though it may seem, some UNIX variants still include C
  36. compilers.  If you are using C-Kermit in some type of UNIX, you could find
  37. the one or two places where C-Kermit actually outputs bytes to the
  38. communication device and install a simple counter there.  The question of
  39. how to display or use this information is another matter.
  40.  
  41. - Frank